.container {
    min-height: 100vh;
    padding-top: 100px;
    text-align: center;
    background-color: #d1edfb;
    background-image: url('../images/bg2.png');
    background-color: rgba(#d1edfb); /* Adjust the opacity here */
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0 auto;
    padding: 20px;
    padding-bottom:80px;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-section {
    height: 100vh;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-section:nth-child(even) {
    flex-direction: row-reverse;
}

.about-image img {
    width: 500px;
    height: auto;
    border-radius:20px;
}

.about-text {
    width: fit-content;
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}

.about-text p {
    margin: 0;
    padding: 10px 0;
    font-size: 28px;
}

.about-section img {
    max-width: 100%;
    height: auto;
}

/* Mobile */

@media (max-width: 768px) {

    .container{
        background-image: url('../images/mobile-bg.png');
        padding-top: 70px;


    }

    .about-section {
        flex-direction: column;
        align-items: center;
        height: fit-content;
    }

    .about-image img {
        width: 90%;
        max-width: 400px;
    }

    .about-text {
        width: 90%;
        text-align: center;
    }

    .about-section:nth-child(even) {
    flex-direction: column;
}
}